home *** CD-ROM | disk | FTP | other *** search
/ Aminet 1 (Walnut Creek) / Aminet - June 1993 [Walnut Creek].iso / aminet / util / edit / jed207.lha / src / hash.lha / hash.h < prev   
C/C++ Source or Header  |  1993-01-06  |  411b  |  23 lines

  1.  
  2. /*
  3.  * HASH.H
  4.  * (c) 1992-3 J.Harper
  5.  *
  6.  * open hashing module header
  7.  */
  8.  
  9. #ifndef _HASH_H
  10. #define _HASH_H
  11.  
  12. typedef struct HASHNODE {
  13.     struct HASHNODE    *h_Next;
  14.     struct HASHNODE    *h_Prev;
  15.     char           *h_Name;
  16. } HASHNODE;
  17.  
  18. void        inserthash    (HASHNODE **, HASHNODE *, int);
  19. void        removehash    (HASHNODE **, HASHNODE *, int);
  20. HASHNODE   *findhash    (HASHNODE **, char *, int);
  21.  
  22. #endif /* _HASH_H */
  23.